home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / HTML / Menu / SigmaTreeRenderer.php < prev   
PHP Script  |  2004-03-24  |  6KB  |  159 lines

  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2004 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Alexey Borzov <avb@php.net>                                 |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: SigmaTreeRenderer.php,v 1.2 2004/01/18 17:35:52 avb Exp $
  20. //
  21.  
  22. require_once 'HTML/Menu/Renderer.php';
  23.  
  24. /**
  25.  * HTML_Template_Sigma-based renderer for 'tree' and 'sitemap' type menus,
  26.  * where menu level is represented by tag nesting.
  27.  * 
  28.  * @version $Revision: 1.2 $
  29.  * @author  Alexey Borzov <avb@php.net>
  30.  * @access  public
  31.  * @package HTML_Menu
  32.  */
  33. class HTML_Menu_SigmaTreeRenderer extends HTML_Menu_Renderer
  34. {
  35.    /**
  36.     * Template object used for output
  37.     * @var object HTML_Template_Sigma
  38.     */
  39.     var $_tpl;
  40.  
  41.    /**
  42.     * Prefix for template blocks and placeholders
  43.     * @var string
  44.     */
  45.     var $_prefix;
  46.  
  47.    /**
  48.     *  
  49.     *
  50.     */
  51.     var $_level = -1;
  52.  
  53.    /**
  54.     * Mapping from HTML_MENU_ENTRY_* constants to template block names
  55.     * @var array
  56.     */
  57.     var $_typeNames = array(
  58.         HTML_MENU_ENTRY_INACTIVE    => 'inactive',
  59.         HTML_MENU_ENTRY_ACTIVE      => 'active',
  60.         HTML_MENU_ENTRY_ACTIVEPATH  => 'activepath'
  61.     );
  62.  
  63.    /**
  64.     * Class constructor.
  65.     * 
  66.     * Sets the template object to use and sets prefix for template blocks
  67.     * and placeholders. We use prefix to avoid name collisions with existing 
  68.     * template blocks and it is customisable to allow output of several menus 
  69.     * into one template.
  70.     *
  71.     * @access public
  72.     * @param  object HTML_Template_Sigma    template object to use for output
  73.     * @param  string    prefix for template blocks and placeholders
  74.     */
  75.     function HTML_Menu_SigmaTreeRenderer(&$tpl, $prefix = 'mu_')
  76.     {
  77.         $this->_tpl    =& $tpl;
  78.         $this->_prefix =  $prefix;
  79.     }
  80.  
  81.  
  82.     function setMenuType($menuType)
  83.     {
  84.         if ('tree' == $menuType || 'sitemap' == $menuType) {
  85.             $this->_menuType = $menuType;
  86.         } else {
  87.             require_once 'PEAR.php';
  88.             return PEAR::raiseError("HTML_Menu_SigmaTreeRenderer: unable to render '$menuType' type menu");
  89.         }
  90.         $this->_level = -1;
  91.     }
  92.  
  93.  
  94.     function finishLevel($level)
  95.     {
  96.         // Close the previous entry
  97.         if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_entry_close')) {
  98.             $this->_tpl->touchBlock($this->_prefix . ($level + 1) . '_entry_close');
  99.         } else {
  100.             $this->_tpl->touchBlock($this->_prefix . 'entry_close');
  101.         }
  102.         $this->_tpl->parse($this->_prefix . 'tree_loop');
  103.         // Close the level
  104.         if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_level_close')) {
  105.             $this->_tpl->touchBlock($this->_prefix . ($level + 1) . '_level_close');
  106.         } else {
  107.             $this->_tpl->touchBlock($this->_prefix . 'level_close');
  108.         }
  109.         $this->_tpl->parse($this->_prefix . 'tree_loop');
  110.     }
  111.  
  112.  
  113.     function renderEntry($node, $level, $type)
  114.     {
  115.         // Close the entry if previous was on same or higher level
  116.         if ($this->_level >= $level) {
  117.             if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_entry_close')) {
  118.                 $this->_tpl->touchBlock($this->_prefix . ($level + 1) . '_entry_close');
  119.             } else {
  120.                 $this->_tpl->touchBlock($this->_prefix . 'entry_close');
  121.             }
  122.             $this->_tpl->parse($this->_prefix . 'tree_loop');
  123.  
  124.         // If the new level is higher then open the level
  125.         } else {
  126.             if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_level_open')) {
  127.                 $this->_tpl->touchBlock($this->_prefix . ($level + 1) . '_level_open');
  128.             } else {
  129.                 $this->_tpl->touchBlock($this->_prefix . 'level_open');
  130.             }
  131.             $this->_tpl->parse($this->_prefix . 'tree_loop');
  132.         }
  133.         // Open the entry
  134.         if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_entry_open')) {
  135.             $this->_tpl->touchBlock($this->_prefix . ($level + 1) . '_entry_open');
  136.         } else {
  137.             $this->_tpl->touchBlock($this->_prefix . 'entry_open');
  138.         }
  139.         $this->_tpl->parse($this->_prefix . 'tree_loop');
  140.  
  141.         if ($this->_tpl->blockExists($this->_prefix . ($level + 1) . '_' . $this->_typeNames[$type])) {
  142.             $blockName = $this->_prefix . ($level + 1) . '_' . $this->_typeNames[$type];
  143.         } else {
  144.             $blockName = $this->_prefix . $this->_typeNames[$type];
  145.         }
  146.  
  147.         foreach ($node as $k => $v) {
  148.             if ('sub' != $k && $this->_tpl->placeholderExists($this->_prefix . $k, $blockName)) {
  149.                 $this->_tpl->setVariable($this->_prefix . $k, $v);
  150.             }
  151.         }
  152.         $this->_tpl->parse($blockName);
  153.         $this->_tpl->parse($this->_prefix . 'tree_loop');
  154.  
  155.         $this->_level = $level;
  156.     }
  157. }
  158. ?>
  159.